home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000388_fdc@columbia.edu_Mon Feb 25 11:55:31 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  45 lines

  1. Article: 13236 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Kermit send on AIX 4.3.3 drops telnet session
  6. Date: 25 Feb 2002 11:54:04 -0500
  7. Organization: Columbia University
  8. Lines: 28
  9. Message-ID: <a5dq7c$qba$1@watsol.cc.columbia.edu>
  10. References: <ee855e1b.0202220959.6c7364f7@posting.google.com> <a562t0$fjc$1@watsol.cc.columbia.edu> <ee855e1b.0202250838.169a8adf@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1014656045 15358 128.59.39.139 (25 Feb 2002 16:54:05 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 25 Feb 2002 16:54:05 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13236
  16.  
  17. In article <ee855e1b.0202250838.169a8adf@posting.google.com>,
  18. ztivo <zeetivo@yahoo.com> wrote:
  19. : A question about the docs. The docs show the use of
  20. : "set host * 3000" to correct the problem. That does not
  21. : appear to be a kermit command and I've never used it in aix.
  22. : What does that do?
  23. As explained in the manual:
  24.  
  25. You can set up your own client/server pair that bypass the
  26. host's terminal and pty drivers, giving you a direct
  27. Kermit-to-Kermit connection with no funny business.
  28.  
  29. On one (host xxx) computer, use:
  30.  
  31.   set host /server * 3000 /raw
  32.  
  33. This means: wait for a connection on TCP port 3000, don't use Telnet
  34. protocol, and enter Kermit server mode when the connection comes in.
  35.  
  36. Then, on the other computer:
  37.  
  38.   set host xxx 3000 /raw
  39.  
  40. to make a connection to the Kermit server on host xxx.
  41.  
  42. - Frank
  43.